Welcome![Sign In][Sign Up]
Location:
Search - simple send message java

Search list

[ICQ-IM-ChatA_simple_chat_tool

Description: 一个简单的用java编写的聊天工具,用socket类处理通信部分 1. 运行server.bat 或在命令行下输入(要在工作目录): java -jar Chat.jar 8888 打开服务器 8888也可以改为任意端口号 2. 运行client.bat 或在命令行下输入(要在工作目录): java -jar Chat.jar 打开客户端 3. 主要类说明: Server.java 等待用户连接,连接后为当前用户创建ServerListener对象 ServerListener.java 接受用户请求,并将消息移入消息队列 Sender.java 消息发送器,用循环不断检查消息队列中是否有新消息,有则发送消息,被发送的消息移出队列 Client.java 接受信息,提供与界面之间的接口函数 Chat.java 主要是用户界面 -with a simple preparation of java chat tools, with socket type handling a part of communication. server.bat or running the command line input (to the Public for directory) : java-jar Chat.jar 8888 Open Server 8888 can also read arbitrary port 2 . client.bat or running the command line input (to the working directory) : java-jar Chat.jar Open Client 3. main categories : Server.java waiting for users to connect, after connecting to the current users to create object ServerListener ServerListener . java user request, the information will be relocated Message Queue Sender.java news transmitters, cyclic Message Queue constantly check whether there are new news, then send messages the news was sent out of Queue Client.java receive information, interface provides the interface between Chat.java m
Platform: | Size: 27322 | Author: ZX | Hits:

[ICQ-IM-ChatA_simple_chat_tool

Description: 一个简单的用java编写的聊天工具,用socket类处理通信部分 1. 运行server.bat 或在命令行下输入(要在工作目录): java -jar Chat.jar 8888 打开服务器 8888也可以改为任意端口号 2. 运行client.bat 或在命令行下输入(要在工作目录): java -jar Chat.jar 打开客户端 3. 主要类说明: Server.java 等待用户连接,连接后为当前用户创建ServerListener对象 ServerListener.java 接受用户请求,并将消息移入消息队列 Sender.java 消息发送器,用循环不断检查消息队列中是否有新消息,有则发送消息,被发送的消息移出队列 Client.java 接受信息,提供与界面之间的接口函数 Chat.java 主要是用户界面 -with a simple preparation of java chat tools, with socket type handling a part of communication. server.bat or running the command line input (to the Public for directory) : java-jar Chat.jar 8888 Open Server 8888 can also read arbitrary port 2 . client.bat or running the command line input (to the working directory) : java-jar Chat.jar Open Client 3. main categories : Server.java waiting for users to connect, after connecting to the current users to create object ServerListener ServerListener . java user request, the information will be relocated Message Queue Sender.java news transmitters, cyclic Message Queue constantly check whether there are new news, then send messages the news was sent out of Queue Client.java receive information, interface provides the interface between Chat.java m
Platform: | Size: 26624 | Author: ZX | Hits:

[JSP/JavaMyMessenger

Description: * This a simple tool to send/receive UDP packet based on a * free software developed by Neil Deason. * The purpose of program is to simulate a remote MGC So that the * SIP Message debugging/testing is possible.-* This a simple tool to send/receive UDP p acket* based on a free software developed by Nei l Deason.* The purpose of program is to simulate So a remote MGC that the SIP Message debugging*/testing is possible.
Platform: | Size: 11264 | Author: adonmiao | Hits:

[Com Portcomm

Description: 简单的图形界面短信收发程序,预先设置好了已经-A simple graphical interface to send and receive message procedure, pre-set have been
Platform: | Size: 382976 | Author: 于达平 | Hits:

[J2MEWMA_Recver

Description: 本程序是j2me,实现简单的虚拟手机与控制台的收发短信。-This procedure is j2me, realize a simple phone with a virtual console to send and receive message.
Platform: | Size: 10240 | Author: zqs | Hits:

[JSP/Javajava_SMS

Description: 首先在串口上连接一个或者多个MODEL(简单的说就是可以收发短信的手机),代码对串口进行初始化,控制收发,利用AT 指令操作MODEL进行短信的收发解码。自己调试过的,可用。-First serial port connected to one or more MODEL (simple message that it can send and receive mobile phone), serial code to initialize, control transceiver, using AT commands to operate the transceiver MODEL message to decode. Debug their own before, can be used.
Platform: | Size: 167936 | Author: lyk | Hits:

[JSP/JavaJava-Socketemail

Description: Java Socket邮件发送程序SMTP客户端邮件发送程序的实现原理非常简单,首先建立和邮件服务器的Socket连接,然后和服务器握手,发送各个SMTP指令,并按照邮件格式封装邮件体内容,最后发送即可。-Java Socket client mail program SMTP mail program implementation principle is very simple, first create the Socket connection and mail server, and then shook hands and the server to send all SMTP commands and follow the message format encapsulates the content of the message body, and finally send it.
Platform: | Size: 6144 | Author: 和牧 | Hits:

[JSP/JavachartRoom

Description: 一个简单的聊天室java源码程序,一方能够发送消息,另一方能够接受消息,包括能够发送一些表情。-A simple chat program java source code, one can send a message, the other party to accept the message, including the ability to send some expression.
Platform: | Size: 1867776 | Author: 周琳 | Hits:

[JSP/Javajavamail

Description: 使用Java API Quick Mail 发送邮件,Quick Mail是一个简单的发送邮件方式-Use Java API Quick Mail to send mail, Quick Mail is a simple way to send a message
Platform: | Size: 3206144 | Author: 刘欣 | Hits:

[JSP/JavaQQ

Description: 本程序是基于TCP/IP协议的网络通信程序,运用了Java的流、文件、多线程等编程技术。套接字对象在网络编程中扮演着重要的角色,该程序就是一个基于套接字技术编写的简单聊天工具。聊天功能所使用的输入输出流分别是BufferedReader和PrintWriter,服务器为客户端启动一个线程,在该线程中通过套接字和客户交流信息。当向服务器发送一条聊天信息:“Hello”时,服务器要向这个线程中的输出流写入信息:“Hello”,那么客户端套接字的输入流就读取到了这条消息。文件传输分为文件发送和文件接收两部分,当服务器端要向客户端发送文件时,先调用字节输入流FileInputStream从本机读取想要发送的文件,再将信息通过字节输出流BufferedOutputStream发送到客户端,这样客户端的字节输入流BufferedInputStream就读取到了相应信息,客户端再通过字节输出流FileOutputStream将信息以文件形式存入本机。-This program is based on network communication program TCP/IP protocol, the use of Java streams, files, and other multi-threaded programming techniques. Socket object plays an important role in network programming, the program is written in a simple socket-based chat tool technology. Input and output streams chat are used BufferedReader and PrintWriter, the server for the client to start a thread in the thread through the socket and customers to exchange information. When sending a chat message to the server: " Hello" , the server would like this thread output stream to write information: " Hello" , then the client socket input stream is read to this message. File transfer files sent and received document is divided into two parts, when the client would like the server to send the file, byte input stream FileInputStream first call to read the file you want to send from the machine, then the information output by the byte stream BufferedOutputStream sent to the client, s
Platform: | Size: 7168 | Author: 佟文浩 | Hits:

[JSP/JavaShowQQ

Description: 用java实现简单的聊天系统,可以时时接收用户发来的消息和发送自己的消息-Using java to achieve a simple chat system, the user can always receive incoming messages and send your own message
Platform: | Size: 9453568 | Author: 林鸿 | Hits:

[androidSocket_lts

Description: Socket实现粗略的聊天室功能是一个演示Android简单Socket聊天室的例子源码,只可以安卓发消息PC客户接收,不能反方向发送消息,消息会由PC端转发给所有在线的安卓客户端,接着客户端(包括自己)都会收到某个客户端输入的信息。在安卓端的MainActivity.java中配置好PC服务端IP,环境运行com.socket.androidServer中的SimpleServer服务器。然后运行Android客户端就可以发送消息了-Socket to achieve roughly the chat room function is a demo Android simple socket chat room example source code, can only be Andrews news PC client, receiving message cannot be sent in the opposite direction, the message is the PC forwarded to all online Android client, then client (including yourself) will receive a client input information. In the An Zhuoduan MainActivity.java configuration PC server IP, the environment running SimpleServer com.socket.androidServer server. Then run the Android client to send the message.
Platform: | Size: 3862528 | Author: qiuxiangxiang | Hits:

[JSP/Javaliaotianshi

Description: 一个简单的聊天室,可以发消息聊天设置聊天人数。java语言编写,mysql数据库。-A simple chat room, you can send a message chat set the number of chat. Java language, mysql .
Platform: | Size: 14336 | Author: 张玲玲 | Hits:

CodeBus www.codebus.net